home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1015 b | 33 lines | [TEXT/CWIE] |
- //----------------------------------------------------------------------------------------
- // UCustomViewerWindow.h
- // Copyright © 1996 by Apple Computer, Inc. All rights reserved.
- //----------------------------------------------------------------------------------------
-
- #ifndef __UCustomViewerWindow__
- #define __UCustomViewerWindow__
-
- #ifndef __UCustomViewerDocument__
- #include "UCustomViewerDocument.h"
- #endif
-
- //----------------------------------------------------------------------------------
- // TWindow: Corresponds to a desktop Window. The outermost of a nested set of views.
- //----------------------------------------------------------------------------------
-
- class TCustomViewerWindow : public TWindow
- {
- MA_DECLARE_CLASS;
-
- public:
- TCustomViewerDocument* fCustomViewerDocument;
-
- TCustomViewerWindow();
- virtual ~TCustomViewerWindow();
- virtual void DoEvent(EventNumber eventNumber,
- TEventHandler* source,
- TEvent* event); // Override
- };
-
- extern void InitUCustomViewerWindow();
-
- #endif